'Declaration Public Overloads Function ProgressiveLoading(Of TKey)( _ ByVal sortKeySelector As Expression(Of Func(Of T,TKey)), _ ByVal loadSize As Integer _ ) As ProgressiveView(Of T)
public ProgressiveView<T> ProgressiveLoading<TKey>( Expression<Func<T,TKey>> sortKeySelector, int loadSize )
Parameters
- sortKeySelector
- A function specifying a sort key.
- loadSize
- The size of the page.
Type Parameters
- TKey
- The type of the sort key.
Return Value
A client view that loads the same entities as the source view but does it progressively.